home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xearth-0.92 / Imakefile < prev    next >
Makefile  |  1995-06-25  |  2KB  |  72 lines

  1. XCOMM Imakefile for xearth
  2. XCOMM RCS $Id: Imakefile,v 1.7 1994/05/20 01:37:40 tuna Exp $
  3. XCOMM
  4. XCOMM Copyright (C) 1994 Kirk Lauritz Johnson
  5. XCOMM
  6. XCOMM Permission to use, copy, modify, distribute, and sell this
  7. XCOMM software and its documentation for any purpose is hereby granted
  8. XCOMM without fee, provided that the above copyright notice appear in
  9. XCOMM all copies and that both that copyright notice and this
  10. XCOMM permission notice appear in supporting documentation. The author
  11. XCOMM makes no representations about the suitability of this software
  12. XCOMM for any purpose. It is provided "as is" without express or
  13. XCOMM implied warranty.
  14. XCOMM
  15. XCOMM THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
  16. XCOMM SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  17. XCOMM AND FITNESS, IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  18. XCOMM SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. XCOMM WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  20. XCOMM IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  21. XCOMM ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
  22. XCOMM THIS SOFTWARE.
  23.  
  24. #undef SCO_ODT_3_0
  25. #define SCO_OSE_5_0
  26.  
  27. #undef ancilla
  28. #undef contrib
  29. #undef skunkware2
  30. #define skunkware5
  31.  
  32. #ifdef SCO_ODT_3_0
  33. #define MotifLibs -lXtXm_s
  34. #define CompilerOptions    /* as nothing */
  35. DEFINES = -DNO_SETPRIORITY -Drandom=rand
  36. #endif
  37.  
  38. #ifdef SCO_OSE_5_0
  39. #define MotifLibs -lXm -lXt
  40. #define CompilerOptions    -b elf
  41. #endif
  42.  
  43. #ifdef ancilla
  44. BINDIR=/u/bin
  45. #endif
  46.  
  47. #ifdef contrib
  48. BINDIR=/usr/local/contrib/bin
  49. #endif
  50.  
  51. #ifdef skunkware2
  52. BINDIR=/usr/skunk/bin
  53. #endif
  54.  
  55. #ifdef skunkware5
  56. BINDIR=/usr/skunk/bin
  57. #endif
  58.  
  59. MKDIRHIER=/usr/bin/X11/mkdirhier
  60.  
  61.         CCOPTIONS = -O CompilerOptions
  62.            SRCS = xearth.c dither.c extarr.c gif.c gifout.c mapdata.c \
  63.                   ppm.c render.c resources.c scan.c sunpos.c x11.c
  64.            OBJS = xearth.o dither.o extarr.o gif.o gifout.o mapdata.o \
  65.                   ppm.o render.o resources.o scan.o sunpos.o x11.o
  66.         XTOOLLIB = MotifLibs -lXmu
  67.         DEPLIBS = $(DEPXTOOLLIB) $(DEPXLIB)
  68. LOCAL_LIBRARIES = $(XTOOLLIB) $(XLIB)
  69.   SYS_LIBRARIES = -lm -lc_s
  70.  
  71. ComplexProgramTarget(xearth)
  72.